From: Jens Frank Date: Sun, 23 Jan 2005 16:42:06 +0000 (+0000) Subject: BUG#1389 i18n for proxy blocker message X-Git-Tag: 1.5.0alpha1~857 X-Git-Url: http://git.cyclocoop.org/%22.%24info%5B?a=commitdiff_plain;h=fa7c01d9b1906336c98b01666a45209670f18a7e;p=lhc%2Fweb%2Fwiklou.git BUG#1389 i18n for proxy blocker message --- diff --git a/includes/User.php b/includes/User.php index 036d8837ea..ec31dc4e9e 100644 --- a/includes/User.php +++ b/includes/User.php @@ -271,8 +271,8 @@ class User { # Proxy blocking if ( !$this->mBlockedby ) { if ( array_key_exists( $wgIP, $wgProxyList ) ) { + $this->mBlockedby = wfMsg( 'proxyblocker' ); $this->mBlockreason = wfMsg( 'proxyblockreason' ); - $this->mBlockedby = "Proxy blocker"; } } }